{% extends "base.html" %} {% block title %}Patient Appointments - Admin Panel{% endblock %} {% block content %}
{{ patient_user.name }} - All appointment records
{{ patient_user.email }}
| Date | Time | Doctor | Type | Disease Category | Status | Charges | Actions |
|---|---|---|---|---|---|---|---|
| {{ appointment.appointment_date.strftime('%B %d, %Y') }} | {{ appointment.appointment_time.strftime('%I:%M %p') }} |
{{ appointment.doctor.user.name }}
{{ appointment.doctor.specialization }} |
{{ appointment.appointment_type.title() }} | {{ appointment.disease_category }} | {% if appointment.status == 'pending' %} Pending {% else %} {{ appointment.status.title() }} {% endif %} | Rs. {{ appointment.charges }} | View |
This patient has no appointments with the selected filter.